{% extends 'base_dashboard.html' %} {% block title %}{% if action == 'Edit Module' %}Edit{% else %}Add{% endif %} Module — Online LMS{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% if action == 'Edit Module' %}Edit Module{% else %}Add Module{% endif %}

Organise your course content into structured modules

Back to Course
{{ course.title }}
{% if action == 'Edit Module' %}Editing a module in this course{% else %}New module will be added to this course{% endif %}
{% csrf_token %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% endif %}
{{ form.title }} {% if form.title.errors %}
{{ form.title.errors.0 }}
{% endif %}
{{ form.order }} {% if form.order.errors %}
{{ form.order.errors.0 }}
{% endif %}
Lower numbers appear first.
Cancel
{% endblock %}